This notebook coordinates the execution of the realtime-kinetics analysis for the steady-state measurement of dsDNA. A single template notebook is executed multiple times, one for each measurement.
The module nbrun.py needs to be in the current folder:
In [1]:
from nbrun import run_notebook
In [2]:
nb_name = '8-spot dsDNA-steady-state - Template'
out_path = 'out_notebooks'
In [3]:
for meas_id in ('7d', '12d', '17d'):
nb_kwargs = {'measurement_id': meas_id}
run_notebook(nb_name, nb_suffix='-out_%s' % meas_id, out_path=out_path,
nb_kwargs=nb_kwargs)
In [ ]: